home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software 2000
/
Software 2000 Volume 1 (Disc 1 of 2).iso
/
utilities
/
u267.dms
/
u267.adf
/
INC9110B.LZH
/
include
/
alloca.h
next >
Wrap
C/C++ Source or Header
|
1991-05-22
|
324b
|
23 lines
/*
* alloca.h - Declarations for alloca()
* Simon Wright (sjwright@cix) 22.5.91, for PDC/GCC/Amiga
*/
#ifndef __ALLOCA_H__
#define __ALLOCA_H__
#ifndef __STDDEF_H__
#include <stddef.h>
#endif
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
void *alloca(size_t size);
#endif
#endif /* __ALLOCA_H__ */